from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

84556

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-04-22
Net-SSLeay - 1.960.0
Ebuild name:

dev-perl/Net-SSLeay-1.960.0

Description

Perl extension for using OpenSSL

Added to portage

2026-04-22

Net-SSLeay - 1.960.0-r1
Ebuild name:

dev-perl/Net-SSLeay-1.960.0-r1

Description

Perl extension for using OpenSSL

Added to portage

2026-04-22

ampi - 0_pre20140616-r1
Ebuild name:

sys-cluster/ampi-0_pre20140616-r1

Description

MPI library for algorithmic differentiation

Added to portage

2026-04-22

anacron - 2.3-r6
Ebuild name:

sys-process/anacron-2.3-r6

Description

A periodic command scheduler

Added to portage

2026-04-22

android-studio - 2025.3.4.6
Ebuild name:

dev-util/android-studio-2025.3.4.6

Description

Android development environment based on IntelliJ IDEA

Added to portage

2026-04-22

apache-arrow - 24.0.0
Ebuild name:

dev-libs/apache-arrow-24.0.0

Description

A cross-language development platform for in-memory data

Added to portage

2026-04-22

apache-libcloud - 3.9.1
Ebuild name:

dev-python/apache-libcloud-3.9.1

Description

Unified Interface to the Cloud - python support libs

Added to portage

2026-04-22

awscli - 1.44.83
Ebuild name:

app-admin/awscli-1.44.83

Description

Universal Command Line Environment for AWS

Added to portage

2026-04-22

boto3 - 1.42.93
Ebuild name:

dev-python/boto3-1.42.93

Description

The AWS SDK for Python

Added to portage

2026-04-22

botocore - 1.42.93
Ebuild name:

dev-python/botocore-1.42.93

Description

Low-level, data-driven core of boto 3

Added to portage

2026-04-22

cfn-lint - 1.49.1
Ebuild name:

dev-python/cfn-lint-1.49.1

Description

CloudFormation Linter

Added to portage

2026-04-22

claude-code - 2.1.116
Ebuild name:

dev-util/claude-code-2.1.116

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-04-22

cmake - 4.3.2
Ebuild name:

dev-build/cmake-4.3.2

Description

Cross platform Make

Added to portage

2026-04-22

fastfetch - 2.62.0
Ebuild name:

app-misc/fastfetch-2.62.0

Description

Fast neofetch-like system information tool

Added to portage

2026-04-22

hplip - 3.25.8-r1
Ebuild name:

net-print/hplip-3.25.8-r1

Description

HP Linux Imaging and Printing - Print, scan, fax drivers and service tool

Added to portage

2026-04-22

idna - 3.12
Ebuild name:

dev-python/idna-3.12

Description

Internationalized Domain Names in Applications (IDNA)

Added to portage

2026-04-22

just - 1.50.0
Ebuild name:

dev-build/just-1.50.0

Description

Just a command runner (with syntax inspired by 'make')

Added to portage

2026-04-22

lego - 4.35.1
Ebuild name:

app-crypt/lego-4.35.1

Description

Let's Encrypt/ACME client (like certbot or acme.sh) and library written in Go

Added to portage

2026-04-22

libpwquality - 1.4.5-r3
Ebuild name:

dev-libs/libpwquality-1.4.5-r3

Description

Library for password quality checking and generating random password

Added to portage

2026-04-22

mattermost-desktop-bin - 6.1.2
Ebuild name:

net-im/mattermost-desktop-bin-6.1.2

Description

Mattermost Desktop application

Added to portage

2026-04-22

mhash - 0.9.9.9-r4
Ebuild name:

app-crypt/mhash-0.9.9.9-r4

Description

Library providing a uniform interface to a large number of hash algorith

Added to portage

2026-04-22

minisign - 0.12
Ebuild name:

app-crypt/minisign-0.12

Description

Dead simple tool to sign files and verify signatures

Added to portage

2026-04-22

moodle - 4.5.11
Ebuild name:

www-apps/moodle-4.5.11

Description

The Moodle Course Management System

Added to portage

2026-04-22

moodle - 5.0.7
Ebuild name:

www-apps/moodle-5.0.7

Description

The Moodle Course Management System

Added to portage

2026-04-22

mypy - 1.20.2
Ebuild name:

dev-python/mypy-1.20.2

Description

Optional static typing for Python

Added to portage

2026-04-22

ntfs3g - 2026.2.25
Ebuild name:

sys-fs/ntfs3g-2026.2.25

Description

Open source read-write NTFS driver that runs under FUSE

Added to portage

2026-04-22

openjdk - 17.0.19_p10
Ebuild name:

dev-java/openjdk-17.0.19_p10

Description

Open source implementation of the Java programming language

Added to portage

2026-04-22

openjdk - 21.0.11_p10
Ebuild name:

dev-java/openjdk-21.0.11_p10

Description

Open source implementation of the Java programming language

Added to portage

2026-04-22

openjdk - 25.0.3_p9
Ebuild name:

dev-java/openjdk-25.0.3_p9

Description

Open source implementation of the Java programming language

Added to portage

2026-04-22

openjdk - 26.0.1_p8
Ebuild name:

dev-java/openjdk-26.0.1_p8

Description

Open source implementation of the Java programming language

Added to portage

2026-04-22

openjdk - 27_alpha18
Ebuild name:

dev-java/openjdk-27_alpha18

Description

Open source implementation of the Java programming language

Added to portage

2026-04-22

pyarrow - 24.0.0
Ebuild name:

dev-python/pyarrow-24.0.0

Description

Python library for Apache Arrow

Added to portage

2026-04-22

pydata-sphinx-theme - 0.17.1
Ebuild name:

dev-python/pydata-sphinx-theme-0.17.1

Description

Bootstrap-based Sphinx theme from the PyData community

Added to portage

2026-04-22

quodlibet - 4.7.1-r2
Ebuild name:

media-sound/quodlibet-4.7.1-r2

Description

audio library tagger, manager, and player for GTK+

Added to portage

2026-04-22

ruby - 4.0.3
Ebuild name:

dev-lang/ruby-4.0.3

Description

An object-oriented scripting language

Added to portage

2026-04-22

scrot - 2.0.0
Ebuild name:

media-gfx/scrot-2.0.0

Description

Screen capture utility using imlib2 library

Added to portage

2026-04-22

sed - 4.10
Ebuild name:

sys-apps/sed-4.10

Description

Super-useful stream editor

Added to portage

2026-04-22

sfeed - 2.4
Ebuild name:

net-news/sfeed-2.4

Description

Simple RSS and Atom parser

Added to portage

2026-04-22

skanpage - 25.12.3-r1
Ebuild name:

media-gfx/skanpage-25.12.3-r1

Description

Multi-page scanning application supporting image and pdf files

Added to portage

2026-04-22

skanpage - 26.04.0-r1
Ebuild name:

media-gfx/skanpage-26.04.0-r1

Description

Multi-page scanning application supporting image and pdf files

Added to portage

2026-04-22

testresources - 2.1.2
Ebuild name:

dev-python/testresources-2.1.2

Description

A pyunit extension for managing expensive test resources

Added to portage

2026-04-22

uvicorn - 0.45.0
Ebuild name:

dev-python/uvicorn-0.45.0

Description

Lightning-fast ASGI server implementation

Added to portage

2026-04-22

webkit-gtk - 2.52.3-r410
Ebuild name:

net-libs/webkit-gtk-2.52.3-r410

Description

Open source web browser engine

Added to portage

2026-04-22

webkit-gtk - 2.52.3-r600
Ebuild name:

net-libs/webkit-gtk-2.52.3-r600

Description

Open source web browser engine

Added to portage

2026-04-22

2026-04-21
awscli - 1.44.82
Ebuild name:

app-admin/awscli-1.44.82

Description

Universal Command Line Environment for AWS

Added to portage

2026-04-21

boto3 - 1.42.92
Ebuild name:

dev-python/boto3-1.42.92

Description

The AWS SDK for Python

Added to portage

2026-04-21

botocore - 1.42.92
Ebuild name:

dev-python/botocore-1.42.92

Description

Low-level, data-driven core of boto 3

Added to portage

2026-04-21

cachetools - 7.0.6
Ebuild name:

dev-python/cachetools-7.0.6

Description

Extensible memoizing collections and decorators

Added to portage

2026-04-21

cfn-lint - 1.49.0
Ebuild name:

dev-python/cfn-lint-1.49.0

Description

CloudFormation Linter

Added to portage

2026-04-21

chirp - 20260417
Ebuild name:

media-radio/chirp-20260417

Description

A free, open-source tool for programming your radio

Added to portage

2026-04-21

clang - 22.1.4
Ebuild name:

dev-python/clang-22.1.4

Description

Python bindings for llvm-core/clang

Added to portage

2026-04-21

clang - 22.1.4
Ebuild name:

llvm-core/clang-22.1.4

Description

C language family frontend for LLVM

Added to portage

2026-04-21

clang-common - 22.1.4
Ebuild name:

llvm-core/clang-common-22.1.4

Description

Common files shared between multiple slots of clang

Added to portage

2026-04-21

compiler-rt - 22.1.4
Ebuild name:

llvm-runtimes/compiler-rt-22.1.4

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-04-21

compiler-rt-sanitizers - 22.1.4
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-22.1.4

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2026-04-21

ddcutil - 2.2.6
Ebuild name:

app-misc/ddcutil-2.2.6

Description

Program for querying and changing monitor settings

Added to portage

2026-04-21

firefox - 140.10.0
Ebuild name:

www-client/firefox-140.10.0

Description

Firefox Web Browser

Added to portage

2026-04-21

firefox - 150.0
Ebuild name:

www-client/firefox-150.0

Description

Firefox Web Browser

Added to portage

2026-04-21

firefox-bin - 140.10.0
Ebuild name:

www-client/firefox-bin-140.10.0

Description

Firefox Web Browser

Added to portage

2026-04-21

firefox-l10n - 150.0
Ebuild name:

www-client/firefox-l10n-150.0

Description

Firefox Web Browser's translation files

Added to portage

2026-04-21

flang - 22.1.4
Ebuild name:

llvm-core/flang-22.1.4

Description

LLVM's Fortran frontend

Added to portage

2026-04-21

flang-rt - 22.1.4
Ebuild name:

llvm-runtimes/flang-rt-22.1.4

Description

LLVM's Fortran runtime

Added to portage

2026-04-21

git - 2.54.0
Ebuild name:

dev-vcs/git-2.54.0

Description

Stupid content tracker distributed VCS designed for speed and efficiency

Added to portage

2026-04-21

htmlcxx - 0.87-r1
Ebuild name:

dev-cpp/htmlcxx-0.87-r1

Description

A simple non-validating CSS 1 and HTML parser for C++

Added to portage

2026-04-21

jupyter-events - 0.12.1
Ebuild name:

dev-python/jupyter-events-0.12.1

Description

Jupyter Event System library

Added to portage

2026-04-21

libclc - 22.1.4
Ebuild name:

llvm-core/libclc-22.1.4

Description

OpenCL C library

Added to portage

2026-04-21

libcxx - 22.1.4
Ebuild name:

llvm-runtimes/libcxx-22.1.4

Description

New implementation of the C++ standard library, targeting C++11

Added to portage

2026-04-21

libcxxabi - 22.1.4
Ebuild name:

llvm-runtimes/libcxxabi-22.1.4

Description

Low level support for a standard C++ library

Added to portage

2026-04-21

libdbusmenu-lxqt - 0.4.0
Ebuild name:

dev-libs/libdbusmenu-lxqt-0.4.0

Description

LXQt DBusMenu Implementation

Added to portage

2026-04-21

libfm-qt - 2.4.0
Ebuild name:

x11-libs/libfm-qt-2.4.0

Description

Qt Library for Building File Managers

Added to portage

2026-04-21

libgcc - 22.1.4
Ebuild name:

llvm-runtimes/libgcc-22.1.4

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2026-04-21

liblouis - 3.37.0-r1
Ebuild name:

dev-libs/liblouis-3.37.0-r1

Description

An open-source braille translator and back-translator

Added to portage

2026-04-21

liblxqt - 2.4.0
Ebuild name:

lxqt-base/liblxqt-2.4.0

Description

Common base library for the LXQt desktop environment

Added to portage

2026-04-21

libqtxdg - 4.4.0
Ebuild name:

dev-libs/libqtxdg-4.4.0

Description

Qt Implementation of XDG Standards

Added to portage

2026-04-21

libquo - 1.4
Ebuild name:

sys-cluster/libquo-1.4

Description

Run-time tuning of process binding policies made easy

Added to portage

2026-04-21

libunwind - 22.1.4
Ebuild name:

llvm-runtimes/libunwind-22.1.4

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-04-21

lit - 22.1.4
Ebuild name:

dev-python/lit-22.1.4

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-04-21

lld - 22.1.4
Ebuild name:

llvm-core/lld-22.1.4

Description

The LLVM linker (link editor)

Added to portage

2026-04-21

lldb - 22.1.4
Ebuild name:

llvm-core/lldb-22.1.4

Description

The LLVM debugger

Added to portage

2026-04-21

llvm - 22.1.4
Ebuild name:

dev-ml/llvm-22.1.4

Description

OCaml bindings for LLVM

Added to portage

2026-04-21

llvm - 22.1.4
Ebuild name:

llvm-core/llvm-22.1.4

Description

Low Level Virtual Machine

Added to portage

2026-04-21

llvm-common - 22.1.4
Ebuild name:

llvm-core/llvm-common-22.1.4

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-04-21

lximage-qt - 2.4.0
Ebuild name:

media-gfx/lximage-qt-2.4.0

Description

Qt Image Viewer

Added to portage

2026-04-21

lxqt-about - 2.4.0
Ebuild name:

lxqt-base/lxqt-about-2.4.0

Description

LXQt about dialog

Added to portage

2026-04-21

lxqt-admin - 2.4.0
Ebuild name:

lxqt-base/lxqt-admin-2.4.0

Description

LXQt system administration tool

Added to portage

2026-04-21

lxqt-archiver - 1.4.0
Ebuild name:

app-arch/lxqt-archiver-1.4.0

Description

Qt GUI File Archiver

Added to portage

2026-04-21

lxqt-build-tools - 2.4.0
Ebuild name:

dev-util/lxqt-build-tools-2.4.0

Description

LXQt Build Tools

Added to portage

2026-04-21

lxqt-config - 2.4.0
Ebuild name:

lxqt-base/lxqt-config-2.4.0

Description

LXQt system configuration control center

Added to portage

2026-04-21

lxqt-globalkeys - 2.4.0
Ebuild name:

lxqt-base/lxqt-globalkeys-2.4.0

Description

Daemon and library for global keyboard shortcuts registration

Added to portage

2026-04-21

lxqt-menu-data - 2.4.0
Ebuild name:

lxqt-base/lxqt-menu-data-2.4.0

Description

LXQt Menu Files and Translations for Menu Categories

Added to portage

2026-04-21

lxqt-meta - 2.4.0
Ebuild name:

lxqt-base/lxqt-meta-2.4.0

Description

Meta ebuild for LXQt, the Lightweight Desktop Environment

Added to portage

2026-04-21

lxqt-notificationd - 2.4.0
Ebuild name:

lxqt-base/lxqt-notificationd-2.4.0

Description

LXQt notification daemon and library

Added to portage

2026-04-21

lxqt-openssh-askpass - 2.4.0
Ebuild name:

lxqt-base/lxqt-openssh-askpass-2.4.0

Description

LXQt OpenSSH user password prompt tool

Added to portage

2026-04-21

lxqt-panel - 2.4.0
Ebuild name:

lxqt-base/lxqt-panel-2.4.0

Description

LXQt desktop panel and plugins

Added to portage

2026-04-21

lxqt-policykit - 2.4.0
Ebuild name:

lxqt-base/lxqt-policykit-2.4.0

Description

LXQt PolKit authentication agent

Added to portage

2026-04-21

lxqt-powermanagement - 2.4.0
Ebuild name:

lxqt-base/lxqt-powermanagement-2.4.0

Description

LXQt daemon for power management and auto-suspend

Added to portage

2026-04-21

lxqt-qtplugin - 2.4.0
Ebuild name:

lxqt-base/lxqt-qtplugin-2.4.0

Description

LXQt system integration plugin for Qt

Added to portage

2026-04-21

lxqt-runner - 2.4.0
Ebuild name:

lxqt-base/lxqt-runner-2.4.0

Description

LXQt quick launcher

Added to portage

2026-04-21

lxqt-session - 2.4.0
Ebuild name:

lxqt-base/lxqt-session-2.4.0

Description

LXQt Session Manager

Added to portage

2026-04-21

lxqt-sudo - 2.4.0
Ebuild name:

lxqt-base/lxqt-sudo-2.4.0

Description

LXQt GUI frontend for sudo

Added to portage

2026-04-21

lxqt-themes - 2.4.0
Ebuild name:

x11-themes/lxqt-themes-2.4.0

Description

LXQt Themes

Added to portage

2026-04-21

lxqt-wayland-session - 0.4.0
Ebuild name:

lxqt-base/lxqt-wayland-session-0.4.0

Description

LXQt Wayland Session Support

Added to portage

2026-04-21

meson - 1.11.1
Ebuild name:

dev-build/meson-1.11.1

Description

Open source build system

Added to portage

2026-04-21

mlir - 22.1.4
Ebuild name:

llvm-core/mlir-22.1.4

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-04-21

narwhals - 2.20.0
Ebuild name:

dev-python/narwhals-2.20.0

Description

Extremely lightweight compatibility layer between dataframe libraries

Added to portage

2026-04-21

nxml-libvirt-schemas - 12.0.0
Ebuild name:

app-emacs/nxml-libvirt-schemas-12.0.0

Description

Extension for nxml-mode with libvirt schemas

Added to portage

2026-04-21

offload - 22.1.4
Ebuild name:

llvm-runtimes/offload-22.1.4

Description

OpenMP offloading support

Added to portage

2026-04-21

openhab-bin - 5.1.4
Ebuild name:

app-misc/openhab-bin-5.1.4

Description

An open-source automation software for your home

Added to portage

2026-04-21

openmp - 22.1.4
Ebuild name:

llvm-runtimes/openmp-22.1.4

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2026-04-21

openmp-amdgcn-amd-amdhsa - 22.1.4
Ebuild name:

llvm-runtimes/openmp-amdgcn-amd-amdhsa-22.1.4

Description

OpenMP target library for amdgcn devices

Added to portage

2026-04-21

openmp-nvptx64-nvidia-cuda - 22.1.4
Ebuild name:

llvm-runtimes/openmp-nvptx64-nvidia-cuda-22.1.4

Description

OpenMP target library for nvptx64 devices

Added to portage

2026-04-21

oslotest - 6.1.1
Ebuild name:

dev-python/oslotest-6.1.1

Description

Oslo test framework

Added to portage

2026-04-21

pavucontrol-qt - 2.4.0
Ebuild name:

media-sound/pavucontrol-qt-2.4.0

Description

Qt GUI Pulseaudio Mixer

Added to portage

2026-04-21

pcmanfm-qt - 2.4.0
Ebuild name:

x11-misc/pcmanfm-qt-2.4.0

Description

Qt GUI Tabbed Filemanager

Added to portage

2026-04-21

pdm - 2.26.8
Ebuild name:

dev-python/pdm-2.26.8

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2026-04-21

pelican - 4.12.0
Ebuild name:

app-text/pelican-4.12.0

Description

A tool to generate a static blog, with restructured text or markdown input

Added to portage

2026-04-21

pixi - 0.67.1
Ebuild name:

dev-util/pixi-0.67.1

Description

A package management and workflow tool

Added to portage

2026-04-21

polly - 22.1.4
Ebuild name:

llvm-core/polly-22.1.4

Description

Polyhedral optimizations for LLVM

Added to portage

2026-04-21

psycopg - 2.9.12
Ebuild name:

dev-python/psycopg-2.9.12

Description

PostgreSQL database adapter for Python

Added to portage

2026-04-21

pydantic - 2.13.3
Ebuild name:

dev-python/pydantic-2.13.3

Description

Data parsing and validation using Python type hints

Added to portage

2026-04-21

pydantic-settings - 2.14.0
Ebuild name:

dev-python/pydantic-settings-2.14.0

Description

Settings management using Pydantic

Added to portage

2026-04-21

pymongo - 4.17.0
Ebuild name:

dev-python/pymongo-4.17.0

Description

Python driver for MongoDB

Added to portage

2026-04-21

qps - 2.13.0
Ebuild name:

x11-misc/qps-2.13.0

Description

Qt GUI Process Manager

Added to portage

2026-04-21

qterminal - 2.4.0
Ebuild name:

x11-terms/qterminal-2.4.0

Description

Qt-based multitab terminal emulator

Added to portage

2026-04-21

qtermwidget - 2.4.0
Ebuild name:

x11-libs/qtermwidget-2.4.0

Description

Qt terminal emulator widget

Added to portage

2026-04-21

qtxdg-tools - 4.4.0
Ebuild name:

app-misc/qtxdg-tools-4.4.0

Description

User Tools from libqtxdg

Added to portage

2026-04-21

radarr-bin - 6.2.0.10390
Ebuild name:

www-apps/radarr-bin-6.2.0.10390

Description

A fork of Sonarr to work with movies a la Couchpotato

Added to portage

2026-04-21

rpi-eeprom - 28.15_p1
Ebuild name:

dev-embedded/rpi-eeprom-28.15_p1

Description

Updater for Raspberry Pi 4/5 bootloader and the VL805 USB controll

Added to portage

2026-04-21

rutorrent - 5.3.0
Ebuild name:

www-apps/rutorrent-5.3.0

Description

ruTorrent is a front-end for the popular Bittorrent client rTorrent

Added to portage

2026-04-21

screengrab - 3.2.0
Ebuild name:

x11-misc/screengrab-3.2.0

Description

Qt GUI Screenshot Utility

Added to portage

2026-04-21

spectre-meltdown-checker - 26.33.0420460
Ebuild name:

app-admin/spectre-meltdown-checker-26.33.0420460

Description

Spectre & Meltdown vulnerability/mitigation checke

Added to portage

2026-04-21

sqlglot - 30.6.0
Ebuild name:

dev-python/sqlglot-30.6.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2026-04-21

uutils-coreutils - 0.8.0
Ebuild name:

sys-apps/uutils-coreutils-0.8.0

Description

GNU coreutils rewritten in Rust

Added to portage

2026-04-21

valgrind - 3.27.0
Ebuild name:

dev-debug/valgrind-3.27.0

Description

An open-source memory debugger for GNU/Linux

Added to portage

2026-04-21

xdg-desktop-portal-lxqt - 1.4.0
Ebuild name:

gui-libs/xdg-desktop-portal-lxqt-1.4.0

Description

Backend implementation for xdg-desktop-portal using Qt/KF5/l

Added to portage

2026-04-21

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 73.2 ms